home *** CD-ROM | disk | FTP | other *** search
/ HyperLib 1997 Winter - Disc 1 / HYPERLIB-1997-Winter-CD1.ISO.7z / HYPERLIB-1997-Winter-CD1.ISO / オンラインウェア / PRG / MacPerl 506 appl folder.sit / MacPerl 506 appl folder / Mac_Perl_506r1m_appl / lib / tainted.pl < prev    next >
Text File  |  1995-03-20  |  216b  |  12 lines

  1. # This subroutine returns true if its argument is tainted, false otherwise.
  2.  
  3. die "tainted.pl not (yet) implemented on the Mac";
  4.  
  5. sub tainted {
  6.     local($@);
  7.     eval { kill 0 * $_[0] };
  8.     $@ =~ /^Insecure/;
  9. }
  10.  
  11. 1;
  12.